查询资料变更申请单状态-使用申请单号
使用申请单号查询申请单状态
请求参数 | 类型 | 描述 |
---|---|---|
apply_id | string | 微信支付申请单号 |
php
$instance->v3->mchalterapply->mchsubjectalterapplyment->_apply_id_->getAsync([
'apply_id' => '20220617143306000013906025001',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance->chain('v3/mchalterapply/mchsubjectalterapplyment/{apply_id}')->getAsync([
'apply_id' => '20220617143306000013906025001',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$instance['v3/mchalterapply/mchsubjectalterapplyment/{apply_id}']->getAsync([
'apply_id' => '20220617143306000013906025001',
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
print_r(json_decode((string) $response->getBody(), true));
})
->wait();
php
$response = $instance->v3->mchalterapply->mchsubjectalterapplyment->_apply_id_->get([
'apply_id' => '20220617143306000013906025001',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance->chain('v3/mchalterapply/mchsubjectalterapplyment/{apply_id}')->get([
'apply_id' => '20220617143306000013906025001',
]);
print_r(json_decode((string) $response->getBody(), true));
php
$response = $instance['v3/mchalterapply/mchsubjectalterapplyment/{apply_id}']->get([
'apply_id' => '20220617143306000013906025001',
]);
print_r(json_decode((string) $response->getBody(), true));
返回字典 | 类型 | 描述 |
---|---|---|
merchant_code | string | 微信支付商户号 |
apply_id | string | 申请单号 |
out_request_no | string | 业务申请编号 |
state | string | 申请单状态 |
audit_reject_reason | string | 总体驳回原因 |
audit_reject_detail | object[] | 驳回原因详情 |
param_name | string | 参数名称 |
reject_reason | string | 驳回原因 |
参阅 官方文档